home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-24 | 376 b | 30 lines | [TEXT/MPCC] |
- // OutPoint.h
-
- #pragma once
-
- #include "NetPoint.h"
-
-
- class OutPoint :
- public NetPoint
-
- {
- protected:
- union {
- InetAddress inet;
- } fHisAddress;
- long fHisAddressSize;
- public:
-
- OutPoint(
- const char *protocol,
- const char *address,
- short port);
- ~OutPoint();
-
- virtual OSErr SendData(
- const void *data,
- long size);
- };
-
-